You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
780 B
780 B
FindJob
This project aim to help college student to find a suitable job.
we use SpringBoot to write the back-end, and use React to write front-end.
Deploy
We use docker to deploy our application, you need to install docker in your machine and then run the following command:
docker pull ourfor/findjob:latest
docker run --privileged --name findjob -d \
-v /sys/fs/cgroup:/sys/fs/cgroup:ro \
-v $PWD:/root:rw \
-h db.server -p 80:80 \
-t ourfor/findjob:latest
the one more thing that you need to do is add ip.ourfor.sh and job.ourfor.top to your system hosts, and both of them point to 127.0.0.1.
Because of using systemd to manage daemon, this container works only unix like system, such as
linuxandmacOSetc.