diff options
| author | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2023-05-09 21:49:06 -0700 |
|---|---|---|
| committer | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2023-05-09 21:49:06 -0700 |
| commit | 39ea90b2ff31760f93392634192c2a0614e20c82 (patch) | |
| tree | 91907c0cb366fadad593193cc4fd2b21f9f09181 /docker-compose.yml | |
| parent | 1fd64270d28ee8c83ae2920630e9c5ba218b22d3 (diff) | |
| download | simponic.xyz-39ea90b2ff31760f93392634192c2a0614e20c82.tar.gz simponic.xyz-39ea90b2ff31760f93392634192c2a0614e20c82.zip | |
export org mode to php; docker compose
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..3fef4dc --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,25 @@ +version: '3.7' + +services: + web: + image: nginx:latest + ports: + - "8080:80" + volumes: + - ./nginx.conf:/etc/nginx/conf.d/default.conf + - ./:/var/www/html + depends_on: + - php + networks: + - app-network + + php: + image: php:7.4-fpm + volumes: + - ./:/var/www/html + networks: + - app-network + +networks: + app-network: + driver: bridge |
