/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/with-docker-compose/compose.dev.yaml
31 строка
765 B
マルコメ
examples: replace the all `docker-compose.yml` with `compose.yaml` (#71006)
30 окт 2024, 01:29
Не верифицирован
30 окт 2024, 01:29
8f0d583
Код
Авторство
О чём код?
services: next-app: container_name: next-app build: context: ./next-app dockerfile: dev.Dockerfile # Set environment variables directly in the compose file environment: ENV_VARIABLE: ${ENV_VARIABLE} NEXT_PUBLIC_ENV_VARIABLE: ${NEXT_PUBLIC_ENV_VARIABLE} # Set environment variables based on the .env file env_file: - .env volumes: - ./next-app/src:/app/src - ./next-app/public:/app/public 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