summaryrefslogtreecommitdiff
path: root/examples/docker/docker-compose.yml
diff options
context:
space:
mode:
authorkmeister <kris@aliencom.net>2017-04-13 18:32:00 -0400
committerkmeister <kris@aliencom.net>2017-04-13 18:32:00 -0400
commit9840fc2341f125f64a6089366197ca9012a9026f (patch)
tree991d793c31ab49655ce258629a6b52f07c8fc2b8 /examples/docker/docker-compose.yml
parentc77e28d30ee407b073bd71f12951571b8fe63959 (diff)
[docker-exampe] moved into examples repo https://github.com/ponzu-cms/examples
Diffstat (limited to 'examples/docker/docker-compose.yml')
-rw-r--r--examples/docker/docker-compose.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/docker/docker-compose.yml b/examples/docker/docker-compose.yml
deleted file mode 100644
index e3d4b8e..0000000
--- a/examples/docker/docker-compose.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-# service configuration for our dockerized Ponzu app
-admin:
-
- # use the Dockerfile in the ponzu directory
- build: ./admin
-
- # expose the port we configured Ponzu to publish
- expose:
- - "8080"
-
- volumes:
- - ./admin:/go/src/project
-
- command: bash /go/src/project/start_admin.sh start
-
-# service configuration for our web server
-web:
-
- # use the dockerfile in the web directory
- build: ./web
-
- volumes:
- - ./web/public:/public
-
- # makes the web container aware of the admin container
- links:
- - admin
-
- # expose the port we configured Nginx to bind to
- ports:
- #host will listen on port 3000 in dev
- - "3000:80"