rsnext/examples/with-docker-compose/docker-compose.prod-without-multistage.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
570 B
YAML
Raw Normal View History

2022-06-14 13:13:55 +02:00
version: "3"
services:
next-app:
container_name: next-app
build:
context: ./next-app
dockerfile: prod-without-multistage.Dockerfile
args:
ENV_VARIABLE: ${ENV_VARIABLE}
NEXT_PUBLIC_ENV_VARIABLE: ${NEXT_PUBLIC_ENV_VARIABLE}
restart: always
ports:
- 3000:3000
networks:
- my_network
# Add more containers below (nginx, postgres, etc.)
# Define a network, which allows containers to communicate
# with each other, by using their container name as a hostname
networks:
my_network:
external: true