| 123456789101112131415161718192021222324252627 |
- version: "3.8"
- services:
- web:
- image: nginx:latest
- ports:
- - "80:80"
- volumes:
- - ./html:/usr/share/nginx/html
- api:
- image: node:18-alpine
- ports:
- - "3000:3000"
- environment:
- - NODE_ENV=production
- db:
- image: postgres:15
- environment:
- - POSTGRES_DB=myapp
- - POSTGRES_USER=admin
- volumes:
- - pgdata:/var/lib/postgresql/data
- volumes:
- pgdata:
|