Upload files to "/"
This commit is contained in:
parent
cd3614bbbf
commit
e083d44666
3 changed files with 20 additions and 0 deletions
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
README.md
|
||||||
|
.git
|
||||||
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
FROM nginx:alpine
|
||||||
|
|
||||||
|
LABEL org.opencontainers.image.title="Copymoji" \
|
||||||
|
org.opencontainers.image.description="Emoji & Unicode character picker — click to copy"
|
||||||
|
|
||||||
|
COPY web/ /usr/share/nginx/html/
|
||||||
|
|
||||||
|
EXPOSE 80
|
||||||
10
docker-compose.yml
Normal file
10
docker-compose.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
services:
|
||||||
|
copymoji:
|
||||||
|
build: .
|
||||||
|
image: copymoji:v1.0.0
|
||||||
|
container_name: copymoji
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
||||||
|
volumes:
|
||||||
|
- ./web:/usr/share/nginx/html
|
||||||
Loading…
Add table
Add a link
Reference in a new issue