Skip to content

Commit d48ff1a

Browse files
MarkusJohansenroot
andauthored
add necessary docker config (#184)
Co-authored-by: root <[email protected]>
1 parent 2ad7b5a commit d48ff1a

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

apps/demo/.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dockerfile
2+
docker-compose.yml
3+
*.md

apps/demo/docker-compose.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
services:
2+
static-site:
3+
build: .
4+
container_name: chimeracss-html-demo
5+
ports:
6+
- "3001:80"
7+
restart: always

apps/demo/dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM nginx:alpine
2+
3+
COPY . /usr/share/nginx/html
4+

0 commit comments

Comments
 (0)