forked from tchubaba/pausepi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (35 loc) · 870 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
38 lines (35 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
app:
build:
context: .
dockerfile: Dockerfile
image: php:8.3-fpm
container_name: pausepi-php
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www
volumes:
- app-volume:/var/www
- ./docker/php/conf.d/:/usr/local/etc/php/conf.d/
networks:
- app-network
webserver:
image: nginx:alpine
container_name: pausepi-nginx
restart: unless-stopped
tty: true
ports:
- "80:80"
volumes:
- app-volume:/var/www
- ./docker/nginx/conf.d/:/etc/nginx/conf.d/
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
app-volume: