This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
skolavdf/wap/calc-api/docker-compose.yml
2023-01-03 23:51:59 +01:00

22 lines
339 B
YAML

version: '3'
services:
nginx:
build:
context: .
dockerfile: nginx/Dockerfile
restart: always
container_name: api-calcc
ports:
- 80:80
networks:
- internal
php:
build:
context: .
dockerfile: php/Dockerfile
networks:
- internal
networks:
internal:
driver: bridge