summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorLizzy Hunt <elizabeth.hunt@simponic.xyz>2023-05-09 21:49:06 -0700
committerLizzy Hunt <elizabeth.hunt@simponic.xyz>2023-05-09 21:49:06 -0700
commit39ea90b2ff31760f93392634192c2a0614e20c82 (patch)
tree91907c0cb366fadad593193cc4fd2b21f9f09181 /docker-compose.yml
parent1fd64270d28ee8c83ae2920630e9c5ba218b22d3 (diff)
downloadsimponic.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.yml25
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