Skip to content

Commit 495d5bf

Browse files
committed
add docker-compose.yml
1 parent a232bf6 commit 495d5bf

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

docker-compose.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "transform"
2+
3+
services:
4+
web:
5+
build:
6+
context: .
7+
dockerfile_inline: |
8+
FROM busybox:stable
9+
RUN adduser -D static
10+
USER static
11+
WORKDIR /home/static
12+
COPY www /home/static/www
13+
CMD ["busybox", "httpd", "-f", "-v", "-p", "3000", "-h", "/home/static/www"]
14+
network_mode: host

0 commit comments

Comments
 (0)