20 lines
395 B
YAML
20 lines
395 B
YAML
version: '0.1.0'
|
|
services:
|
|
external:
|
|
container_name: ferdinland_beta
|
|
# The name of the image that will be created when building this container
|
|
image: themodrnhakr/ferdinland_beta
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
networks:
|
|
- proxy
|
|
env_file: .env
|
|
ports:
|
|
- '${PORT}:3000'
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
name: proxy-internal
|