several changeseveral changess
This commit is contained in:
parent
01af10784e
commit
a58e97e7e5
|
@ -0,0 +1,5 @@
|
|||
.git
|
||||
/docker-compose.yml
|
||||
/LICENSE
|
||||
/README.md
|
||||
/TODO.md
|
|
@ -0,0 +1,2 @@
|
|||
/scripts
|
||||
|
12
Dockerfile
12
Dockerfile
|
@ -1,16 +1,16 @@
|
|||
FROM fanyx/php:5.6
|
||||
|
||||
COPY /tmserver:/opt/tmserver
|
||||
COPY /xaseco:/opt/xaseco
|
||||
|
||||
RUN apt update \
|
||||
&& useradd -M --uid 1000 trackmania \
|
||||
&& mkdir /opt/tmserver /opt/xaseco \
|
||||
&& groupadd trackmania \
|
||||
&& useradd -M -g trackmania trackmania \
|
||||
&& chown -R trackmania:trackmania /opt/tmserver \
|
||||
&& chown -R trackmania:trackmania /opt/xaseco
|
||||
|
||||
USER trackmania
|
||||
COPY /tmserver:/opt/tmserver
|
||||
COPY /xaseco:/opt/xaseco
|
||||
|
||||
WORKDIR /opt/tmserver
|
||||
|
||||
ENTRYPOINT ["./tmserver"]
|
||||
|
||||
CMD ["start", "tmserver"]
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!/bin/sh
|
||||
cd /home/tmn/xaseco
|
||||
php aseco.php TMN </dev/null >aseco.log 2>&1 &
|
||||
echo $!
|
||||
|
|
Loading…
Reference in New Issue